home *** CD-ROM | disk | FTP | other *** search
- unit ISAPIApp;
-
- interface
-
- uses Windows, Classes, HTTPApp, ISAPI2;
-
- type
- TISAPIRequest = class(TWebRequest)
- protected
- function GetStringVariable(Index: Integer): string; override;
- function GetDateVariable(Index: Integer): TDateTime; override;
- function GetIntegerVariable(Index: Integer): Integer; override;
- public
- constructor Create(AECB: PEXTENSION_CONTROL_BLOCK);
- function GetFieldByName(const Name: string): string; override;
- function ReadClient(var Buffer; Count: Integer): Integer; override;
- function ReadString(Count: Integer): string; override;
- function TranslateURI(const URI: string): string; override;
- function WriteClient(var Buffer; Count: Integer): Integer; override;
- function WriteString(const AString: string): Boolean; override;
- property ECB: PEXTENSION_CONTROL_BLOCK;
- end;
-
- TISAPIResponse = class(TWebResponse)
- protected
- function GetContent: string; override;
- function GetDateVariable(Index: Integer): TDateTime; override;
- function GetIntegerVariable(Index: Integer): Integer; override;
- function GetLogMessage: string; override;
- function GetStatusCode: Integer; override;
- function GetStringVariable(Index: Integer): string; override;
- function Sent: Boolean; override;
- procedure SetContent(const Value: string); override;
- procedure SetDateVariable(Index: Integer; const Value: TDateTime); override;
- procedure SetIntegerVariable(Index: Integer; Value: Integer); override;
- procedure SetLogMessage(const Value: string); override;
- procedure SetStatusCode(Value: Integer); override;
- procedure SetStringVariable(Index: Integer; const Value: string); override;
- public
- constructor Create(HTTPRequest: TWebRequest);
- procedure SendResponse; override;
- procedure SendRedirect(const URI: string); override;
- procedure SendStream(AStream: TStream); override;
- end;
-
- TISAPIApplication = class(TWebApplication)
- public
- // These are the entry points relayed from the ISAPI DLL imports
- function GetExtensionVersion(var Ver: THSE_VERSION_INFO): BOOL;
- function HttpExtensionProc(var ECB: TEXTENSION_CONTROL_BLOCK): DWORD;
- function TerminateExtension(dwFlags: DWORD): BOOL;
- end;
-
- function GetExtensionVersion(var Ver: THSE_VERSION_INFO): BOOL; stdcall;
- function HttpExtensionProc(var ECB: TEXTENSION_CONTROL_BLOCK): DWORD; stdcall;
- function TerminateExtension(dwFlags: DWORD): BOOL; stdcall;
-
- implementation
-